home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / amiutils / i_l / irit5 / triv_lib / triv_loc.h < prev    next >
C/C++ Source or Header  |  1995-12-30  |  1KB  |  27 lines

  1. /******************************************************************************
  2. * Triv_loc.h - header file for the TRIV library.                  *
  3. * This header is local to the library - it is NOT external.              *
  4. *******************************************************************************
  5. * Written by Gershon Elber, Sep. 94.                          *
  6. ******************************************************************************/
  7.  
  8. #ifndef TRIV_LOC_H
  9. #define TRIV_LOC_H
  10.  
  11. #include <math.h>
  12. #include <stdio.h>
  13. #include "irit_sm.h"
  14. #include "iritprsr.h"
  15. #include "cagd_lib.h"
  16.  
  17. /******************************************************************************
  18. * This macro is called when the library has detected an unrecoverable error.  *
  19. * Default action is to call TrivFatalError, but you may want to reroute this  *
  20. * to invoke your handler and recover yourself (by long jump for example).     *
  21. ******************************************************************************/
  22. #define TRIV_FATAL_ERROR(Msg)    TrivFatalError(Msg)
  23.  
  24. #include "triv_lib.h"             /* Include the extrenal header as well. */
  25.  
  26. #endif /* TRIV_LOC_H */
  27.